home *** CD-ROM | disk | FTP | other *** search
Wrap
NO DIALTONE atm1 OK atdt6427651 OK a/ CONNECT 2400 DYNIX(R) V3.0.12 (hermes.Berkeley.EDU) login: muir Password: Last login: Sat Apr 7 10:19:59 on ttyd2 DYNIX(R) V3.0.12 NFS #12 (hirohama): Thu Nov 23 23:21:30 PST 1989 >>> Questions? Requests? Send mail to "manager". >>> Space on /users is VERY low! Please clean up as much as possible! 03/17 SOFTWARE OF THE MONTH CLUB: Who: When: 1/90 DECSTATION SOFTWARE OF THE MONTH CLUB: Who: When: /usr6/mipsel/usrbin.mipsel/dxpsview now works cim 1/2 Epoch 3.0 for X11R4 now in /usr/local/epoch cim 1/29 1/9 X11R4 binaries are ready for the decstations. See mail sent to x-users@postgres or mail to cimarron@postgres for more info. ********************************************************************* You have mail. TERM = (wyse50) sun Terminal type is sun 9:04pm up 21 days, 10:10, 13 users, load average: 0.18, 0.12, 0.04 hermes:muir<1> who cimarron ttyd1 Apr 8 21:02 muir ttyd2 Apr 8 21:04 hong ttyp3 Mar 18 20:20 (faerie) hong ttyp4 Mar 18 20:20 (faerie) hong ttyp5 Mar 18 20:20 (faerie) sullivan ttypa Apr 5 13:21 (shan^Chermes:muir<2> f Login Name TTY Idle When Where cimarron Cimarron Taylor d1 Sun 21:02 muir David Muir Sharnoff d2 Sun 21:04 hong Wei Hong p3 5:17 Sun 20:20 faerie hong Wei Hong p4 5:04 Sun 20:20 faerie hong Wei Hong p5 5:01 Sun 20:20 faerie sullivan Mark Sullivan pa 1d Thu 13:21 shangri-la mike Mike Stonebraker pd 2d Fri 13:04 redrider konstan Joe Konstan pf 1d Sat 12:25 elmer-fudd jhingran Anant Jhingran pm 2d Fri 14:05 olympus chungl Chung Liu pR 3:28 Mon 14:16 roger-rabbit ywang Yongdong Wang pU 1d Wed 14:44 hades seitz Steve Seitz pV 1d Wed 14:53 linus chungl Chung Liu pZ 3:09 Tue 20:38 roger-rabbit hermes:muir<3> ^C hermes:muir<3> cat /usr/include/sys/stat.h /* $Copyright: $ * Copyright (c) 1984, 1985, 1986, 1987 Sequent Computer Systems, Inc. * All rights reserved * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ /* * $Header: stat.h 2.0 86/01/28 $ * * stat.h * Structure returned from "stat" system call. */ /* $Log: stat.h,v $ */ struct stat { dev_t st_dev; ino_t st_ino; unsigned short st_mode; short st_nlink; unsigned short st_uid; unsigned short st_gid; dev_t st_rdev; off_t st_size; time_t st_atime; int st_spare1; time_t st_mtime; int st_spare2; time_t st_ctime; int st_spare3; long st_blksize; long st_blocks; long st_spare4[2]; }; #define S_IFMT 0170000 /* type of file */ #define S_IFIFO 0010000 /* fifo */ #define S_IFDIR 0040000 /* directory */ #define S_IFCHR 0020000 /* character special */ #define S_IFBLK 0060000 /* block special */ #define S_IFREG 0100000 /* regular */ #define S_IFLNK 0120000 /* symbolic link */ #define S_IFSOCK 0140000/* socket */ #define S_ISUID 0004000 /* set user id on execution */ #define S_ISGID 0002000 /* set group id on execution */ #define S_ISVTX 0001000 /* save swapped text even after use */ #define S_IREAD 0000400 /* read permission, owner */ #define S_IWRITE 0000200 /* write permission, owner */ #define S_IEXEC 0000100 /* execute/search permission, owner */ hermes:muir<4> cat /usr/include/errno.h /* $Copyright: $ * Copyright (c) 1984, 1985 Sequent Computer Systems, Inc. * All rights reserved * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ /* $Header: errno.h 1.1 86/04/01 $ */ /* * Error codes */ #include <sys/errno.h> extern int errno; hermes:muir<5> cat /usr/include/sys/errno.h /* $Copyright: $ * Copyright (c) 1984, 1985, 1986, 1987 Sequent Computer Systems, Inc. * All rights reserved * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ /* * $Header: errno.h 2.5 87/05/26 $ * * errno.h * Error codes */ /* $Log: errno.h,v $ */ #define EPERM 1 /* Not owner */ #define ENOENT 2 /* No such file or directory */ #define ESRCH 3 /* No such process */ #define EINTR 4 /* Interrupted system call */ #define EIO 5 /* I/O error */ #define ENXIO 6 /* No such device or address */ #define E2BIG 7 /* Arg list too long */ #define ENOEXEC 8 /* Exec format error */ #define EBADF 9 /* Bad file number */ #define ECHILD 10 /* No children */ #define EAGAIN 11 /* No more processes */ #define ENOMEM 12 /* Not enough core */ #define EACCES 13 /* Permission denied */ #define EFAULT 14 /* Bad address */ #define ENOTBLK 15 /* Block device required */ #define EBUSY 16 /* Mount device busy */ #define EEXIST 17 /* File exists */ #define EXDEV 18 /* Cross-device link */ #define ENODEV 19 /* No such device */ #define ENOTDIR 20 /* Not a directory*/ #define EISDIR 21 /* Is a directory */ #define EINVAL 22 /* Invalid argument */ #define ENFILE 23 /* File, Mfile, Inode table overflow */ #define EMFILE 24 /* Too many open files */ #define ENOTTY 25 /* Not a typewriter */ #define ETXTBSY 26 /* Text file busy */ #define EFBIG 27 /* File too large */ #define ENOSPC 28 /* No space left on device */ #define ESPIPE 29 /* Illegal seek */ #define EROFS 30 /* Read-only file system */ #define EMLINK 31 /* Too many links */ #define EPIPE 32 /* Broken pipe */ /* math software */ #define EDOM 33 /* Argument too large */ #define ERANGE 34 /* Result too large */ /* non-blocking and interrupt i/o */ #define EWOULDBLOCK 35 /* Operation would block */ #define EINPROGRESS 36 /* Operation now in progress */ #define EALREADY 37 /* Operation already in progress */ /* ipc/network software */ /* argument errors */ #define ENOTSOCK 38 /* Socket operation on non-socket */ #define EDESTADDRREQ 39 /* Destination address required */ #define EMSGSIZE 40 /* Message too long */ #define EPROTOTYPE 41 /* Protocol wrong type for socket */ #define ENOPROTOOPT 42 /* Protocol not available */ #define EPROTONOSUPPORT 43 /* Protocol not supported */ #define ESOCKTNOSUPPORT 44 /* Socket type not supported */ #define EOPNOTSUPP 45 /* Operation not supported on socket */ #define EPFNOSUPPORT 46 /* Protocol family not supported */ #define EAFNOSUPPORT 47 /* Address family not supported by protocol family */ #define EADDRINUSE 48 /* Address already in use */ #define EADDRNOTAVAIL 49 /* Can't assign requested address */ /* operational errors */ #define ENETDOWN 50 /* Network is down */ #define ENETUNREACH 51 /* Network is unreachable */ #define ENETRESET 52 /* Network dropped connection on reset */ #define ECONNABORTED 53 /* Software caused connection abort */ #define ECONNRESET 54 /* Connection reset by peer */ #define ENOBUFS 55 /* No buffer space available */ #define EISCONN 56 /* Socket is already connected */ #define ENOTCONN 57 /* Socket is not connected */ #define ESHUTDOWN 58 /* Can't send after socket shutdown */ #define ETOOMANYREFS 59 /* Too many references: can't splice */ #define ETIMEDOUT 60 /* Connection timed out */ #define ECONNREFUSED 61 /* Connection refused */ /* */ #define ELOOP 62 /* Too many levels of symbolic links */ #define ENAMETOOLONG 63 /* File name too long */ /* should be rearranged */ #define EHOSTDOWN 64 /* Host is down */ #define EHOSTUNREACH 65 /* No route to host */ #define ENOTEMPTY 66 /* Directory not empty */ /* quotas & mush */ #define EPROCLIM 67 /* Too many processes */ #define EUSERS 68 /* Too many users */ #define EDQUOT 69 /* Disc quota exceeded */ /* Network File System */ #define ESTALE 70 /* Stale NFS file handle */ #define EREMOTE 71 /* Too many levels of remote in path */ /* SystemV Record Locking */ #define EDEADLK 72 /* Deadlock condition avoided */ #define ENOLCK 73 /* No locks available */ /* SystemV Messages */ #define ENOMSG 74 /* no message available */ #define EIDRM 75 /* message queue was removed */ hermes:muir<6> cat /usr/include/signal.h /* $Copyright: $ * Copyright (c) 1984, 1985, 1986, 1987 Sequent Computer Systems, Inc. * All rights reserved * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ /* * $Header: signal.h 2.6 87/04/10 $ */ /* $Log: signal.h,v $ */ #ifndef NSIG #define NSIG 32 #define SIGHUP 1 /* hangup */ #define SIGINT 2 /* interrupt */ #define SIGQUIT 3 /* quit */ #define SIGILL 4 /* illegal instruction (not reset when caught) */ #define ILL_PRIVIN_FAULT 0x0 /* privileged instruction fault */ #define ILL_RESOP_FAULT 0x1 /* reserved operand fault */ #define SIGTRAP 5 /* trace trap (not reset when caught) */ #define SIGIOT 6 /* IOT instruction */ #define SIGEMT 7 /* EMT instruction */ #define SIGFPE 8 /* floating point exception (see machine/fpu.h) */ #define SIGKILL 9 /* kill (cannot be caught or ignored) */ #define SIGBUS 10 /* bus error */ #define SIGSEGV 11 /* segmentation violation */ #define SIGSYS 12 /* bad argument to system call */ #define SIGPIPE 13 /* write on a pipe with no one to read it */ #define SIGALRM 14 /* alarm clock */ #define SIGTERM 15 /* software termination signal from kill */ #define SIGURG 16 /* urgent condition on IO channel */ #define SIGSTOP 17 /* sendable stop signal not from tty */ #define SIGTSTP 18 /* stop signal from tty */ #define SIGCONT 19 /* continue a stopped process */ #define SIGCHLD 20 /* to parent on child stop or exit */ #define SIGTTIN 21 /* to readers pgrp upon background tty read */ #define SIGTTOU 22 /* like TTIN for output if (tp->t_local<OSTOP) */ #define SIGIO 23 /* input/output possible signal */ #define SIGXCPU 24 /* exceeded CPU time limit */ #define SIGXFSZ 25 /* exceeded file size limit */ #define SIGVTALRM 26 /* virtual time alarm */ #define SIGPROF 27 /* profiling time alarm */ #define SIGWINCH 28 /* window size change */ #define SIGUSR1 30 /* user defined signal 1 */ #define SIGUSR2 31 /* user defined signal 2 */ #ifndef KERNEL int (*signal())(); #endif /* * Signal vector "template" used in sigvec call. */ struct sigvec { int (*sv_handler)(); /* signal handler */ int sv_mask; /* signal mask to apply */ int sv_onstack; /* if non-zero, take on signal stack */ }; /* * Structure used in sigstack call. */ struct sigstack { char *ss_sp; /* signal stack pointer */ int ss_onstack; /* current status */ }; /* * Information pushed on stack when a signal is delivered. * This is used by the kernel to restore state following * execution of the signal handler. It is also made available * to the handler to allow it to properly restore state if * a non-standard exit is performed. */ struct sigcontext { int sc_onstack; /* sigstack state to restore */ int sc_mask; /* signal mask to restore */ int sc_sp; /* sp to restore */ #ifdef ns32000 int sc_modpsr; /* mod/psr to restore */ #endif ns32000 #ifdef i386 int sc_flags; /* flags to restore */ #endif i386 int sc_pc; /* pc to restore */ }; #define BADSIG (int (*)())-1 #define SIG_DFL (int (*)())0 #define SIG_IGN (int (*)())1 #ifdef KERNEL #define SIG_CATCH (int (*)())2 #define SIG_HOLD (int (*)())3 /* * issig() return codes. Note that these are order dependent. */ #define STOPPED -1 /* No signal to process, stop was processed */ #define NOSIG 0 /* No signal to process */ #define GOTSIG 1 /* Signal to process */ #define STPGOTSIG 2 /* Signal to process, stop was processed */ #endif #endif /* * Macro for converting signal number to a mask suitable for sigblock()/etc. */ #define sigmask(m) (1 << ((m)-1)) hermes:muir<7> cat /usr/include/sys/^C hermes:muir<7> ls /usr/iclude nclude/sys ALTER-3.0.12/ flock.h nami.h systm.h user.h acct.h fs.h@ param.h text.h ustat.h buf.h fsdir.h@ pathname.h time.h vadvise.h callout.h inode.h@ proc.h timeb.h vcmd.h clist.h ioctl.h protosw.h times.h vfs.h cmap.h ipc.h reboot.h tmp_ctl.h vlimit.h conf.h jioctl.h resource.h trace.h vm.h dir.h kernel.h seg.h tty.h vmmac.h dir_att.h map.h sem.h ttychars.h vmmeter.h dk.h mbuf.h sem.h.orig ttydev.h vmparam.h dmap.h mman.h signal.h types.h vmsystm.h dnlc.h mount.h socket.h uio.h vnode.h domain.h msg.h socketvar.h un.h vtimes.h errno.h mtio.h stat.h universe.h wait.h file.h mutex.h syslog.h unpcb.h hermes:muir<8> ^C hermes:muir<8> cat /usr/include/sys/ioctl.h /* $Copyright: $ * Copyright (c) 1984, 1985, 1986, 1987 Sequent Computer Systems, Inc. * All rights reserved * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ /* * $Header: ioctl.h 2.8 87/08/12 $ */ /* $Log: ioctl.h,v $ */ /* * Ioctl definitions */ #ifndef _IOCTL_ #define _IOCTL_ #ifdef KERNEL #include "../h/ttychars.h" #include "../h/ttydev.h" #else #include <sys/ttychars.h> #include <sys/ttydev.h> #endif #include <sgtty.h> struct tchars { char t_intrc; /* interrupt */ char t_quitc; /* quit */ char t_startc; /* start output */ char t_stopc; /* stop output */ char t_eofc; /* end-of-file */ char t_brkc; /* input delimiter (like nl) */ }; struct ltchars { char t_suspc; /* stop process signal */ char t_dsuspc; /* delayed stop process signal */ char t_rprntc; /* reprint line */ char t_flushc; /* flush output (toggles) */ char t_werasc; /* word erase */ char t_lnextc; /* literal next character */ }; /* * Window size structure */ struct winsize { unsigned short ws_row, ws_col; /* character size of window */ unsigned short ws_xpixel, ws_ypixel; /* pixel size of window */ }; #ifndef _IO /* * Ioctl's have the command encoded in the lower word, * and the size of any in or out parameters in the upper * word. The high 2 bits of the upper word are used * to encode the in/out status of the parameter; for now * we restrict parameters to at most 128 bytes. */ #define IOCPARM_MASK 0x7f /* parameters must be < 128 bytes */ #define IOC_VOID (int)0x20000000 /* no parameters */ #define IOC_OUT (int)0x40000000 /* copy out parameters */ #define IOC_IN (int)0x80000000 /* copy in parameters */ #define IOC_INOUT (IOC_IN|IOC_OUT) /* the 0x20000000 is so we can distinguish new ioctl's from old */ #define _IO(x,y) (IOC_VOID|('x'<<8)|y) #define _IOR(x,y,t) (IOC_OUT|((sizeof(t)&IOCPARM_MASK)<<16)|('x'<<8)|y) #define _IOW(x,y,t) (IOC_IN|((sizeof(t)&IOCPARM_MASK)<<16)|('x'<<8)|y) /* this should be _IORW, but stdio got there first */ #define _IOWR(x,y,t) (IOC_INOUT|((sizeof(t)&IOCPARM_MASK)<<16)|('x'<<8)|y) #endif /* * tty ioctl commands */ #define TIOCGETD _IOR(t, 0, int) /* get line discipline */ #define TIOCSETD _IOW(t, 1, int) /* set line discipline */ #define TIOCHPCL _IO(t, 2) /* hang up on last close */ #define TIOCMODG _IOR(t, 3, int) /* get modem control state */ #define TIOCMODS _IOW(t, 4, int) /* set modem control state */ #define TIOCM_LE 0001 /* line enable */ #define TIOCM_DTR 0002 /* data terminal ready */ #define TIOCM_RTS 0004 /* request to send */ #define TIOCM_ST 0010 /* secondary transmit */ #define TIOCM_SR 0020 /* secondary receive */ #define TIOCM_CTS 0040 /* clear to send */ #define TIOCM_CAR 0100 /* carrier detect */ #define TIOCM_CD TIOCM_CAR #define TIOCM_RNG 0200 /* ring */ #define TIOCM_RI TIOCM_RNG #define TIOCM_DSR 0400 /* data set ready */ #define TIOCGETP _IOR(t, 8,struct sgttyb)/* get parameters -- gtty */ #define TIOCSETP _IOW(t, 9,struct sgttyb)/* set parameters -- stty */ #define TIOCSETN _IOW(t,10,struct sgttyb)/* as above, but no flushtty */ #define TIOCEXCL _IO(t, 13) /* set exclusive use of tty */ #define TIOCNXCL _IO(t, 14) /* reset exclusive use of tty */ #define TIOCFLUSH _IO(t, 16) /* flush buffers */ #define TIOCSETC _IOW(t,17,struct tchars)/* set special characters */ #define TIOCGETC _IOR(t,18,struct tchars)/* get special characters */ #define TANDEM 0x00000001 /* send stopc on out q full */ #define CBREAK 0x00000002 /* half-cooked mode */ #define LCASE 0x00000004 /* simulate lower case */ #define ECHO 0x00000008 /* echo input */ #define CRMOD 0x00000010 /* map \r to \r\n on output */ #define RAW 0x00000020 /* no i/o processing */ #define ODDP 0x00000040 /* get/send odd parity */ #define EVENP 0x00000080 /* get/send even parity */ #define ANYP 0x000000c0 /* get any parity/send none */ #define NLDELAY 0x00000300 /* \n delay */ #define NL0 0x00000000 #define NL1 0x00000100 /* tty 37 */ #define NL2 0x00000200 /* vt05 */ #define NL3 0x00000300 #define TBDELAY 0x00000c00 /* horizontal tab delay */ #define TAB0 0x00000000 #define TAB1 0x00000400 /* tty 37 */ #define TAB2 0x00000800 #define XTABS 0x00000c00 /* expand tabs on output */ #define CRDELAY 0x00003000 /* \r delay */ #define CR0 0x00000000 #define CR1 0x00001000 /* tn 300 */ #define CR2 0x00002000 /* tty 37 */ #define CR3 0x00003000 /* concept 100 */ #define VTDELAY 0x00004000 /* vertical tab delay */ #define FF0 0x00000000 #define FF1 0x00004000 /* tty 37 */ #define BSDELAY 0x00008000 /* \b delay */ #define BS0 0x00000000 #define BS1 0x00008000 #define ALLDELAY (NLDELAY|TBDELAY|CRDELAY|VTDELAY|BSDELAY) #define CRTBS 0x00010000 /* do backspacing for crt */ #define PRTERA 0x00020000 /* \ ... / erase */ #define CRTERA 0x00040000 /* " \b " to wipe out char */ #define TILDE 0x00080000 /* hazeltine tilde kludge */ #define MDMBUF 0x00100000 /* start/stop output on carrier intr */ #define LITOUT 0x00200000 /* literal output */ #define TOSTOP 0x00400000 /* SIGSTOP on background output */ #define FLUSHO 0x00800000 /* flush output to terminal */ #define NOHANG 0x01000000 /* no SIGHUP on carrier drop */ #define L001000 0x02000000 #define CRTKIL 0x04000000 /* kill line with " \b " */ #define PASS8 0x08000000 /* pass all 8 bits on input */ #define CTLECH 0x10000000 /* echo control chars as ^X */ #define PENDIN 0x20000000 /* tp->t_rawq needs reread */ #define DECCTQ 0x40000000 /* only ^Q starts after ^S */ #define NOFLSH 0x80000000 /* no output flush on signal */ /* locals, from 127 down */ #define TIOCLBIS _IOW(t, 127, int) /* bis local mode bits */ #define TIOCLBIC _IOW(t, 126, int) /* bic local mode bits */ #define TIOCLSET _IOW(t, 125, int) /* set entire local mode word */ #define TIOCLGET _IOR(t, 124, int) /* get local modes */ #define LCRTBS (CRTBS>>16) #define LPRTERA (PRTERA>>16) #define LCRTERA (CRTERA>>16) #define LTILDE (TILDE>>16) #define LMDMBUF (MDMBUF>>16) #define LLITOUT (LITOUT>>16) #define LTOSTOP (TOSTOP>>16) #define LFLUSHO (FLUSHO>>16) #define LNOHANG (NOHANG>>16) #define LCRTKIL (CRTKIL>>16) #define LPASS8 (PASS8>>16) #define LCTLECH (CTLECH>>16) #define LPENDIN (PENDIN>>16) #define LDECCTQ (DECCTQ>>16) #define LNOFLSH (NOFLSH>>16) #define TIOCSBRK _IO(t, 123) /* set break bit */ #define TIOCCBRK _IO(t, 122) /* clear break bit */ #define TIOCSDTR _IO(t, 121) /* set data terminal ready */ #define TIOCCDTR _IO(t, 120) /* clear data terminal ready */ #define TIOCGPGRP _IOR(t, 119, int) /* get pgrp of tty */ #define TIOCSPGRP _IOW(t, 118, int) /* set pgrp of tty */ #define TIOCSLTC _IOW(t,117,struct ltchars)/* set local special chars */ #define TIOCGLTC _IOR(t,116,struct ltchars)/* get local special chars */ #define TIOCOUTQ _IOR(t, 115, int) /* output queue size */ #define TIOCSTI _IOW(t, 114, char) /* simulate terminal input */ #define TIOCNOTTY _IO(t, 113) /* void tty association */ #define TIOCPKT _IOW(t, 112, int) /* pty: set/clear packet mode */ #define TIOCPKT_DATA 0x00 /* data packet */ #define TIOCPKT_FLUSHREAD 0x01 /* flush packet */ #define TIOCPKT_FLUSHWRITE 0x02 /* flush packet */ #define TIOCPKT_STOP 0x04 /* stop output */ #define TIOCPKT_START 0x08 /* start output */ #define TIOCPKT_NOSTOP 0x10 /* no more ^S, ^Q */ #define TIOCPKT_DOSTOP 0x20 /* now do ^S ^Q */ #define TIOCSTOP _IO(t, 111) /* stop output, like ^S */ #define TIOCSTART _IO(t, 110) /* start output, like ^Q */ #define TIOCMSET _IOW(t, 109, int) /* set all modem bits */ #define TIOCMBIS _IOW(t, 108, int) /* bis modem bits */ #define TIOCMBIC _IOW(t, 107, int) /* bic modem bits */ #define TIOCMGET _IOR(t, 106, int) /* get all modem bits */ #define TIOCREMOTE _IO(t, 105) /* remote input editing */ #define TIOCGWINSZ _IOR(t, 104, struct winsize) /* get window size */ #define TIOCSWINSZ _IOW(t, 103, struct winsize) /* set window size */ #define TIOCUCNTL _IOW(t, 102, int) /* pty: set/clr usr cntl mode */ #define TIOCSMON _IO(t,100) /* set tty monitor (superuser only) */ #define TIOCNMON _IO(t,99) /* clear tty monitor */ #define TIOCGETN _IOWR(t, 98, int) /* hint at next pty */ #define OTTYDISC 0 /* old, v7 std tty driver */ #define NTTYDISC 1 /* new tty discipline */ #define FIOCLEX _IO(f, 1) /* set exclusive use on fd */ #define FIONCLEX _IO(f, 2) /* remove exclusive use */ /* another local */ #define FIONREAD _IOR(f, 127, int) /* get # bytes to read */ #define FIONBIO _IOW(f, 126, int) /* set/clear non-blocking i/o */ #define FIOASYNC _IOW(f, 125, int) /* set/clear async i/o */ #define FIOSETOWN _IOW(f, 124, int) /* set owner */ #define FIOGETOWN _IOR(f, 123, int) /* get owner */ /* socket i/o controls */ #define SIOCSHIWAT _IOW(s, 0, int) /* set high watermark */ #define SIOCGHIWAT _IOR(s, 1, int) /* get high watermark */ #define SIOCSLOWAT _IOW(s, 2, int) /* set low watermark */ #define SIOCGLOWAT _IOR(s, 3, int) /* get low watermark */ #define SIOCATMARK _IOR(s, 7, int) /* at oob mark? */ #define SIOCSPGRP _IOW(s, 8, int) /* set process group */ #define SIOCGPGRP _IOR(s, 9, int) /* get process group */ #define SIOCADDRT _IOW(r, 10, struct rtentry) /* add route */ #define SIOCDELRT _IOW(r, 11, struct rtentry) /* delete route */ #define SIOCSIFADDR _IOW(i, 12, struct ifreq) /* set ifnet address */ #define SIOCGIFADDR _IOWR(i,13, struct ifreq) /* get ifnet address */ #define SIOCSIFDSTADDR _IOW(i, 14, struct ifreq) /* set p-p address */ #define SIOCGIFDSTADDR _IOWR(i,15, struct ifreq) /* get p-p address */ #define SIOCSIFFLAGS _IOW(i, 16, struct ifreq) /* set ifnet flags */ #define SIOCGIFFLAGS _IOWR(i,17, struct ifreq) /* get ifnet flags */ #define SIOCGIFBRDADDR _IOWR(i,18, struct ifreq) /* get broadcast addr */ #define SIOCSIFBRDADDR _IOW(i, 19, struct ifreq) /* set broadcast addr */ #define SIOCGIFCONF _IOWR(i,20, struct ifconf) /* get ifnet list */ #define SIOCSIFMTU _IOWR(i,21, struct ifreq) /* set ifnet mtu */ #define SIOCGIFMTU _IOWR(i,22, struct ifreq) /* get ifnet mtu */ #define SIOCIFPRON _IOW(i,23, struct ifreq) /* PROMISCUOUS ON */ #define SIOCIFPROFF _IOW(i,24, struct ifreq) /* PROMISCUOUS OFF */ #define SIOCIFPRMON _IOW(i,25, struct ifreq) /* MONITOR NET */ #define SIOCIFPRMOFF _IOW(i,26, struct ifreq) /* MONITOR OFF */ #define SIOCGIFNETMASK _IOWR(i,27, struct ifreq) /* get net addr mask */ #define SIOCSIFNETMASK _IOW(i, 28, struct ifreq) /* set net addr mask */ #define SIOCGIFMETRIC _IOWR(i,29, struct ifreq) /* get IF metric */ #define SIOCSIFMETRIC _IOW(i, 30, struct ifreq) /* set IF metric */ #define SIOCSARP _IOW(i, 31, struct arpreq) /* set arp entry */ #define SIOCGARP _IOWR(i,32, struct arpreq) /* get arp entry */ #define SIOCDARP _IOW(i, 33, struct arpreq) /* delete arp entry */ /* SCED Memory driver ioctls */ #define SMIOSTATS _IOR(m,0,struct sm_stats) /* smem stats */ #define SMIOGETREBOOT0 _IOWR(m,1,struct ioctl_reboot) /* get reboot str */ #define SMIOSETREBOOT0 _IOW(m,2,struct ioctl_reboot) /* set reboot str */ #define SMIOGETREBOOT1 _IOWR(m,3,struct ioctl_reboot) /* get reboot str */ #define SMIOSETREBOOT1 _IOW(m,4,struct ioctl_reboot) /* set reboot str */ #define SMIOGETLOG _IOR(m,5,struct sec_mem) /* get mem log */ #define SMIOSETLOG _IOW(m,6,struct sec_mem) /* set mem log */ /* ZDC disk driver ioctls */ #define ZIOCBCMD _IOWR(z, 0, struct cb) /* do zdc cmd in cb */ #endif hermes:muir<9> cat /usr/include/dir.h /usr/include/dir.h: No such file or directory hermes:muir<10> ls /usr/include/^C hermes:muir<10> man dopen No manual entry for dopen. hermes:muir<11> man opendir No manual entry for opendir. hermes:muir<12> man -k dir cd (1) - change working directory chdir (2) - change current working directory chroot (2) - change root directory compressdir, uncompressdir (1) - compress and uncompress directories of files dcheck (8) - file system directory consistency check diff (1) - differential file and directory comparator dir (5) - format of directories getdirentries (2) - gets directory entries in a filesystem independent format getwd (3) - get current working directory pathname ls (1) - list contents of directory ls (8S) - generate a standalone directory listing mkdir (1) - make a directory mkdir (2) - make a directory file mklost+found (8) - make a lost+found directory for fsck opendir, readdir, telldir, seekdir, rewinddir, closedir (3) - directory operations pwd (1) - working directory name rm, rmdir (1) - remove (unlink) files or directories rmdir (2) - remove a directory file rmdir, rm (1) - remove (unlink) directories or files scandir, alphasort (3) - scan a directory syscall (2) - indirect system call unlink (2) - remove directory entry uuclean (8C) - uucp spool directory clean-up ypfiles (5) - the yellowpages database and directory structure hermes:muir<13> man opend No manual entry for opend. hermes:muir<14> man dne No manual entry for dne. hermes:muir<15> man -k dnext dnext: nothing appropriate hermes:muir<16> ls /usr/include/d* /usr/include/dbm.h /usr/include/disktab.h hermes:muir<17> ls /usr/include/n* /usr/include/ndbm.h /usr/include/netdb.h /usr/include/netdb-dist.h /usr/include/nlist.h /usr/include/net: af.h if_arp.h promisc.h route.h if.h netisr.h raw_cb.h /usr/include/netat: atalk.h atp.h katalk.h /usr/include/netif: if_se.h pci.h /usr/include/netinet: ALTER-3.0.12/ in.h ip.h tcp_debug.h tcp_var.h ALTER-3.0.8/ in_pcb.h ip_icmp.h tcp_fsm.h tcpip.h icmp_var.h in_systm.h ip_var.h tcp_seq.h udp.h if_ether.h in_var.h tcp.h tcp_timer.h udp_var.h /usr/include/nfs: nfs.h nfs_clnt.h rnode.h hermes:muir<18> man 3 -k dir 3 XMenu (3X) - X Deck of cards Menu System Xlib (3X) - C Language X Window System Interface Library Xtext (3X) - routines to provide simple text output windows Xtty (3X) - routines to provide terminal emulator windows abort (3) - generate a fault abs (3) - integer absolute value addmntent, endmntent, getmntent, hasmntopt, setmntent (3) - get file system descriptor file entry alarm (3C) - schedule signal after specified time assert (3X) - program verification atof, atoi, atol (3) - convert ASCII to numbers bcopy, bcmp, bzero, ffs (3) - bit and byte string operations brk, sbrk (3P) - change private data segment size cd (1) - change working directory chdir (2) - change current working directory chroot (2) - change root directory compressdir, uncompressdir (1) - compress and uncompress directories of files cpus_online (3P) - returns the number of CPUs on-line crypt, setkey, encrypt (3) - DES encryption ctime, localtime, gmtime, asctime, timezon^Ccurses (3X) - screen functions with ``optimal'' cursor motion hermes:muir<19> man dopen No manual entry for dopen. hermes:muir<20> rsh postgres man -k dir .PP .Pm is a program designed to make the maintenance of other programs much easier. Its input is a file specifying which files depend on which other files and what to do about files that are ``out(prog) -of-date.'' .Pm is a complete rewrite of a, possi y, more familiar program, .IR Make , to perform the creation of programs in a faster, better and more convenient way (as well as in parallel) while remaining compatible with the old .IR Make . .PP The input to .Pm is called a ``makefile.'' If you don't ecify a makefile to read, .B Makefile and .BR makefile , in that order, are looked for and read if they exist (only one will be read, of course). .PP There are four basic types of lines in a makefile: .RS .IP 1) File dependency specifications .IP 2) Cre ion commands .IP 3) Variable assignments .IP 4) Comments, include statements and conditional directives .RE .PP Any line may be continued over multiple lines by ending it with a backslash. The backslash, following newline and any initial whitespace on t fo.PP Below is a list of fonts and special characters available for the Varian and Versatec Raster printers, and the Imagen Laser printer under .IR ditroff (1). All fonts are available via the ``\eff'' (or ``\ef(ff'', or .ft font) directives at all tim . ``.fp'' commands may be used to move them around to different positions. .PP There are two stippl^CP The argument .BI (l) -P xxx loads parameters and character definitions for typesetter .IR xxx , which at the moment is typically one of .IR ip " ( agen)," .IR va " (varian)," .I^Chermes:muir<21> ^C hermes:muir<21> ^C hermes:muir<21> ls /usr/include/sys/d* /usr/include/sys/dir.h /usr/include/sys/dmap.h /usr/include/sys/dir_att.h /usr/include/sys/dnlc.h /usr/include/sys/dk.h /usr/include/sys/domain.h hermes:muir<22> cat /usr/include/sys/dir.h /* $Copyright: $ * Copyright (c) 1984, 1985, 1986, 1987 Sequent Computer Systems, Inc. * All rights reserved * * This software is furnished under a license and may be used * only in accordance with the terms of that license and with the * inclusion of the above copyright notice. This software may not * be provided or otherwise made available to, or used by, any * other person. No title to or ownership of the software is * hereby transferred. */ /* * $Header: dir.h 2.2 86/04/17 $ * * dir.h * Directory entry structures. */ /* $Log: dir.h,v $ */ /* * A directory consists of some number of blocks of DIRBLKSIZ * bytes, where DIRBLKSIZ is chosen such that it can be transferred * to disk in a single atomic operation (e.g. 512 bytes on most machines). * * Each DIRBLKSIZ byte block contains some number of directory entry * structures, which are of variable length. Each directory entry has * a struct direct at the front of it, containing its inode number, * the length of the entry, and the length of the name contained in * the entry. These are followed by the name padded to a 4 byte boundary * with null bytes. All names are guaranteed null terminated. * The maximum length of a name in a directory is MAXNAMLEN. * * The macro DIRSIZ(dp) gives the amount of space required to represent * a directory entry. Free space in a directory is represented by * entries which have dp->d_reclen > DIRSIZ(dp). All DIRBLKSIZ bytes * in a directory block are claimed by the directory entries. This * usually results in the last entry in a directory having a large * dp->d_reclen. When entries are deleted from a directory, the * space is returned to the previous entry in the same directory * block by increasing its dp->d_reclen. If the first entry of * a directory block is free, then its dp->d_ino is set to 0. * Entries other than the first in a directory do not normally have * dp->d_ino set to 0. */ /* so user programs can just include dir.h */ #if !defined(KERNEL) && !defined(DEV_BSIZE) #define DEV_BSIZE 512 #endif #define DIRBLKSIZ DEV_BSIZE #define MAXNAMLEN 255 struct direct { u_long d_fileno; /* file number of entry */ u_short d_reclen; /* length of this record */ u_short d_namlen; /* length of string in d_name */ char d_name[MAXNAMLEN + 1]; /* name must be no longer than this */ }; #define d_ino d_fileno /* compatablity */ /* * The DIRSIZ macro gives the minimum record length which will hold * the directory entry. This requires the amount of space in struct direct * without the d_name field, plus enough space for the name with a terminating * null byte (dp->d_namlen+1), rounded up to a 4 byte boundary. */ #undef DIRSIZ #define DIRSIZ(dp) \ ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3)) #ifndef KERNEL /* * Definitions for library routines operating on directories. */ typedef struct _dirdesc { int dd_fd; long dd_loc; long dd_size; long dd_bbase; long dd_entno; long dd_bsize; char *dd_buf; } DIR; #ifndef NULL #define NULL 0 #endif extern DIR *opendir(); extern struct direct *readdir(); extern long telldir(); extern void seekdir(); #define rewinddir(dirp) seekdir((dirp), (long)0) extern void closedir(); #endif !KERNEL #ifdef KERNEL /* * Template for manipulating directories. * Should use struct direct's, but the name field * is MAXNAMLEN - 1, and this just won't do. */ struct dirtemplate { u_long dot_ino; short dot_reclen; short dot_namlen; char dot_name[4]; /* must be multiple of 4 */ u_long dotdot_ino; short dotdot_reclen; short dotdot_namlen; char dotdot_name[4]; /* ditto */ }; #endif KERNEL hermes:muir<23> ,am man seekdir No manual entry for seekdir. hermes:muir<24> man rewinddir manNo manual entry for rewinddir. hermes:muir<25> closedir No manual entry for closedir. hermes:muir<26> . hermes:muir<27> logout 27 hits, 60 misses, 31%